home *** CD-ROM | disk | FTP | other *** search
/ Creative Review 34 / Creative-Review-CD-ROM-34.iso / pc / jkd / folio / scripts.cst / 00032_Script_Intra Button < prev    next >
Text File  |  1998-01-26  |  448b  |  27 lines

  1. on mouseEnter
  2.   global intraButton
  3.   overButton intraButton
  4.   updateStage
  5. end
  6.  
  7. on mouseDown
  8.   global intraButton
  9.   downButton intraButton
  10.   updateStage
  11. end
  12.  
  13. on mouseUp
  14.   global intraButton
  15.   overButton intraButton
  16.   updateStage
  17.   global searchMenu
  18.   set the attemptChosenOption of searchMenu = (the clickOn - 60)
  19.   downOption searchMenu
  20. end
  21.  
  22. on mouseLeave
  23.   global intraButton
  24.   normalButton intraButton
  25.   updateStage
  26. end
  27.